home *** CD-ROM | disk | FTP | other *** search
/ SPACE 1 / SPACE - Library 1 - Volume 1.iso / program / 16 / me.doc < prev    next >
Text File  |  1985-11-19  |  4KB  |  124 lines

  1.  
  2.  
  3.  
  4. Microemacs Documentation - Public Domain
  5.  
  6. C-@        set mark
  7. C-A        move to start of line
  8. C-B        move backward character
  9. C-C        run CLI in a subjob
  10. C-D        delete forward character
  11. C-E        move to end of line
  12. C-F        move forward character
  13. C-G        abort command
  14. C-H        delete backward character
  15. C-I        insert tab
  16. C-J        insert CR-LF, then indent
  17. C-K        kill forward
  18. C-L        refresh the screen
  19. C-M        insert CR-LF
  20. C-N        move forward line
  21. C-O        open up a blank line
  22. C-P        move backward line
  23. C-Q        insert literal character
  24. C-R        search backwards
  25. C-S        search forward
  26. C-T        swap characters around point
  27. C-U        universal argument
  28. C-V        move forward page
  29. C-W        kill region
  30. C-X        control-X prefix - see below
  31. C-Y        yank back from killbuffer
  32. C-Z        quick save and exit
  33. esc        meta prefix - see below
  34. del        delete backward character
  35.  
  36. M-C-H        delete backward word
  37. M-!        reposition window
  38. M-.        set mark
  39. M-<        move to start of buffer
  40. M->        move to end of buffer
  41. M-B        move backward word
  42. M-C        initial capitalize word
  43. M-D        delete forward word
  44. M-F        move forward word
  45. M-L        lower case word
  46. M-U        upper case word
  47. M-V        move backward page
  48. M-W        copy region to kill buffer
  49. M-del        delete backward word
  50.  
  51. C-X C-B        display list of buffers
  52. C-X C-C        quit without saving
  53. C-X C-F        adjust file name
  54. C-X C-L        lower case region
  55. C-X C-N        move window down
  56. C-X C-O        delete blank lines
  57. C-X C-P        move window up
  58. C-X C-R        get a file, read only
  59. C-X C-S        save current file
  60. C-X C-U        upper case region
  61. C-X C-V        get a file, read write
  62. C-X C-W        write a file
  63. C-X C-X        swap point and mark
  64. C-X C-Z        shrink window
  65.  
  66. C-X !        run a command in a subjob
  67. C-X (        begin macro
  68. C-X )        end macro
  69. C-X 1        make current window only one
  70. C-X 2        split current window
  71. C-X =        show the cursor position
  72. C-X B        switch a window to a buffer
  73. C-X E        execute macro
  74. C-X F        set fill column
  75. C-X K        make a buffer go away
  76. C-X N        move to the next window
  77. C-X P        move to the previous window
  78. C-X Z        enlarge display window
  79.  
  80. F1,    delbword,    /* delete preceding word            */
  81. F2,    delfword,    /* delete the next/current word            */
  82. F3,    kill,        /* kill current line to its end            */
  83. F4,    yank,        /* insert the deleted stuff back        */
  84. F5,    killbuffer,    /* kill [current] buffer; verifies if changed    */
  85. F6,     listbuffers,    /* list buffers, and their sizes; not accurate    */
  86. F7,    usebuffer,    /* switch to another existing/new buffer    */
  87. F8,    filewrite,    /* save current buffer to specified file    */
  88. F9,    filevisit,    /* read-in a file to edit            */
  89. F10     filesave,    /* save current buffer to its file        */
  90.  
  91. HELP,    help,        /* alas, not much help yet!            */
  92. UNDO,   quickexit,    /* quick save and exit                */
  93. INSERT,    backpage,    /* display page preceding current one        */
  94. HOME,    forwpage,    /* display page following current one        */
  95. UPARRO, backline,    /* move cursor to preceding line; readjust displ*/
  96. DNARRO,    forwline,    /* move cursor to next line; readjust display    */
  97. LTARRO,    backchar,    /* move cursor to preceding char        */
  98. RTARRO,    forwchar,    /* move cursor to following char        */
  99.  
  100.  
  101. KLP,    mvdnwind,    /* scroll window contents up (move window down)    */
  102. KRP,    mvupwind,    /* scroll window contents dn (move window up)    */
  103. KSLASH,    splitwind,    /* split current window into two        */
  104. KSTAR,    onlywind,    /* make the current window the only one        */
  105. KMINUS,    prevwind,    /* move cursor to preceding window, if any    */
  106. KPLUS,    nextwind,    /* move cursor to following window, if any    */
  107. KENTER,    ctlxe,        /* re-execute the key-board macro        */
  108. KDOT,    swapmark,    /* swap mark with dot; (shift-F1 sets mark)    */
  109. K0,    showcpos,    /* show cursor position numerically        */
  110.  
  111.  
  112. K7,    gotobob,    /* move cursor to beginning of buffer        */
  113. K8,    reposition,    /* reposition so that current line is at the top*/
  114. K9,    gotoeob,    /* move cursor to end of buffer            */
  115. K4,    backword,    /* move cursor to beginning of word        */
  116. K5,    backline,    /* move to prev line; same as up arrow        */
  117. K6,    forwword,    /* move cursor to end of word            */
  118. K1,    gotobol,    /* move cursor to beginning of current line    */
  119. K2,    forwline,    /* move to next line; same as dn arrow        */
  120. K3,    gotoeol,    /* move cursor to end of current line        */
  121.  
  122.  
  123.  
  124. ◆◆◆